home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_10 / saks / ada1.ada < prev    next >
Encoding:
Text File  |  1995-08-03  |  279 b   |  19 lines

  1. Listing 1 - Common indenting patterns for
  2. Ada if-else and while-loop statements.
  3.  
  4. if expression then
  5.     statement;
  6.     statement;
  7.     ...
  8. else
  9.     statement;
  10.     statement;
  11.     ...
  12. end if;
  13.  
  14. while expression loop
  15.     statement;
  16.     statement;
  17.     ...
  18. end loop;
  19.